<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="left"
    android:orientation="vertical"
    tools:context=".MainActivity" >
    


    <TextView
        android:id="@+id/actualTV"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Actual:" />

    <EditText
        android:id="@+id/actualET"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10" />

    <TextView
        android:id="@+id/gpsTV"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="GPS:"
        android:textAppearance="?android:attr/textAppearanceSmall" />

    <EditText
        android:id="@+id/gpsET"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:text="&lt;To Be Updated>" />

        <requestFocus />
   

    <TextView
        android:id="@+id/wifiTV"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="WiFi:"
         />

    <EditText
        android:id="@+id/wifiET"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:text="&lt;To Be Updated>" />

   <!--  <TextView
        android:id="@+id/cellTV"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Cell:"
         />

    <EditText
        android:id="@+id/cellET"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:text="&lt;To Be Updated>" />

    <EditText
        android:id="@+id/cellET1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:text="&lt;To Be Updated>" /> -->

    <TextView
        android:id="@+id/calTV"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="NYP Algorithm:" />

    <EditText
        android:id="@+id/calET"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10" />

    <Button
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="startMap"
        android:text="Check Map" />

    
    <!-- <EditText
        android:id="@+id/skyhookET"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:text="&lt;To Be Updated>" /> -->
      
</LinearLayout>